home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
tcl
/
tcl70b2.lha
/
tcl7.0b2
/
tests
/
misc.test
< prev
next >
Wrap
Text File
|
1993-02-06
|
3KB
|
66 lines
# Commands covered: various
#
# This file contains a collection of miscellaneous Tcl tests that
# don't fit naturally in any of the other test files. Many of these
# tests are pathological cases that caused bugs in earlier Tcl
# releases.
#
# Copyright (c) 1992-1993 The Regents of the University of California.
# All rights reserved.
#
# Permission is hereby granted, without written agreement and without
# license or royalty fees, to use, copy, modify, and distribute this
# software and its documentation for any purpose, provided that the
# above copyright notice and the following two paragraphs appear in
# all copies of this software.
#
# IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
# DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
# OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
# CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
# AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
# ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
# PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
# $Header: /user6/ouster/tcl/tests/RCS/misc.test,v 1.2 93/02/06 16:01:46 ouster Exp $ (Berkeley)
if {[string compare test [info procs test]] == 1} then {source defs}
test misc-1.1 {error in variable ref. in command in array reference} {
proc tstProc {} {
global a
set tst $a([winfo name $zz])
# this is a bogus comment
# this is a bogus comment
# this is a bogus comment
# this is a bogus comment
# this is a bogus comment
# this is a bogus comment
# this is a bogus comment
# this is a bogus comment
}
set msg {}
list [catch tstProc msg] $msg
} {1 {can't read "zz": no such variable}}
test misc-1.2 {error in variable ref. in command in array reference} {
proc tstProc {} "
global a
set tst \$a(\[winfo name \$\{zz)
# this is a bogus comment
# this is a bogus comment
# this is a bogus comment
# this is a bogus comment
# this is a bogus comment
# this is a bogus comment
# this is a bogus comment
# this is a bogus comment
"
set msg {}
list [catch tstProc msg] $msg $errorInfo
} {1 {missing close-brace for variable name} missing\ close-brace\ for\ variable\ name\n\ \ \ \ while\ executing\n\"winfo\ name\ \$\{zz)\n\t#\ this\ is\ a\ bogus\ comment\n\t#\ this\ is\ a\ bogus\ comment\n\t#\ this\ is\ a\ bogus\ comment\n\t#\ this\ is\ a\ bogus\ comment\n\t#\ this\ is\ a\ bogus\ commen\ ...\"\n\ \ \ \ (parsing\ index\ for\ array\ \"a\")\n\ \ \ \ invoked\ from\ within\n\"set\ tst\ \$a(\[winfo\ name\ \$\{zz)\n\t#\ this\ is\ a\ bogus\ comment\n\t#\ this\ is\ a\ bogus\ comment\n\t#\ this\ is\ a\ bogus\ comment\n\t#\ this\ is\ a\ bogus\ comment\n\t#\ this\ is\ a\ \ ...\"\n\ \ \ \ (procedure\ \"tstProc\"\ line\ 4)\n\ \ \ \ invoked\ from\ within\n\"tstProc\"}